home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950329-19950528 / 000052_news@columbia.edu_Thu Apr 6 14:39:21 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA12657
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Thu, 6 Apr 1995 10:39:24 -0400
  3. Received: by apakabar.cc.columbia.edu id AA08582
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Thu, 6 Apr 1995 10:39:23 -0400
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  6. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: "Can't open output file"
  9. Date: 6 Apr 1995 14:39:21 GMT
  10. Organization: Columbia University
  11. Lines: 30
  12. Message-Id: <3m0uep$8c4@apakabar.cc.columbia.edu>
  13. References: <19950405.225622.346792.NETNEWS@uicvm.uic.edu>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Cc: 
  16.  
  17. In article <19950405.225622.346792.NETNEWS@uicvm.uic.edu>,
  18. Paul Clifford <pcliff@tigger.cc.uic.edu> wrote:
  19. >When using linux kermit (local) and c-kermit (remote), I get the
  20. >message "Can't open output file" when attempting to download a
  21. >file to my local machine. I used to be able to download successfully,
  22. >but now the transfer always aborts with the above message. I may have
  23. >changed some settings, but can't figure out which.
  24. >
  25. This means that a file was coming in, Kermit got the name of the file
  26. from the incoming file header packet, transformed the name (or not)
  27. according to your SET FILE NAMES setting, got the attributes from the
  28. attribute packet, and then tried to create a new file with the given name,
  29. in either the current directory or, if you had SET RECEIVE PATHNAMES ON
  30. and SET FILENAMES LITERAL, in whatever directory was included in the
  31. incoming filename...  and then failed for some reason.  Normally the reason
  32. is printed using perror(), like: write access denied, disk full, or something
  33. like that.
  34.  
  35. To rule out all of the above, run Kermit with its default FILE NAMES and
  36. RECEIVE PATHNAMES settings (namely, CONVERTED and OFF, respectively), and
  37. make sure your current directory is writeable and your disk or partition is
  38. not full.
  39.  
  40. If you still have a problem, then the next question would be: did you install
  41. Kermit setuid or setgid?  If so, did you follow the instructions carefully
  42. for doing this?
  43.  
  44. If you still can't figure out what's wrong, email me directly.
  45.  
  46. - Frank <fdc@columbia.edu>